
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 43, 85, 0.55) 0%, rgba(13, 43, 85, 0.15) 50%, rgba(13, 43, 85, 0.7) 100%);
  pointer-events: none;
}

.slide-1 {
  background: url('../../../images/newhero1.jpeg') center/cover no-repeat;
}

.slide-2 {
  background: url('../../../images/newhero2.jpeg') center/cover no-repeat;
}

.slide-3 {
  background: url('../../../images/newhero3.jpeg') center/cover no-repeat;
}


.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  transition: background 0.2s;
}

.slide-arrow.prev {
  left: 24px;
}

.slide-arrow.next {
  right: 24px;
}
